home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00008_Script_mouseDown - scene4c < prev    next >
Text File  |  1999-03-01  |  754b  |  27 lines

  1. --SS:mouseDown - scene4C
  2. on mouseDown
  3.   puppetSprite 7, FALSE --lori eyes
  4.   set the visible of sprite 7 = FALSE
  5.   
  6.   puppetSprite 95, FALSE -- the rewind button
  7.   set the loc of sprite(95) = point(1000, 1000)
  8.   set the blend of sprite 95 = 0
  9.   puppetSprite 96, FALSE -- the back to intro button
  10.   set the loc of sprite(96) = point(1000, 1000)
  11.   set the blend of sprite 96 = 0
  12.   puppetSprite 97, FALSE -- the fastforward button
  13.   set the loc of sprite(97) = point(1000, 1000)
  14.   set the blend of sprite 97 = 0
  15.   
  16.   
  17.   cursor -1
  18.   if the volume of sound 2 >= 230 then
  19.     set the volume of sound 2 to 100
  20.   else if the volume of sound 2 <= 102 then
  21.     set the volume of sound 2 to 255
  22.   end if
  23.   
  24.   
  25.   go to frame "scene4c"
  26.   
  27. end